• Welcome to The Cave of Dragonflies forums, where the smallest bugs live alongside the strongest dragons.

    Guests are not able to post messages or even read certain areas of the forums. Now, that's boring, don't you think? Registration, on the other hand, is simple, completely free of charge, and does not require you to give out any personal information at all. As soon as you register, you can take part in some of the happy fun things at the forums such as posting messages, voting in polls, sending private messages to people and being told that this is where we drink tea and eat cod.

    Of course I'm not forcing you to do anything if you don't want to, but seriously, what have you got to lose? Five seconds of your life?

Search results

  1. Butterfree

    Website Trouble!

    Re: Menu Trouble! Either the latter, or you change the CSS (not the HTML) to say div#menu instead of ul#menu (or just #menu).
  2. Butterfree

    Website Trouble!

    Re: Menu Trouble! ul#menu selects an ul with the id #menu, but what you did is create a div with the id #menu and wrap it around the ul. Either the selector should be div#menu (or just #menu), or you should ditch the div and just put the id #menu on the actual ul.
  3. Butterfree

    Website Trouble!

    Re: Menu Trouble! It's because the selector ul on the bottom rule selects both the top-level list (the one you actually want to position) and the sublists (which you don't). It would be simplest to give the top-level list an id such as "menu" and use that (i.e. #menu) as the selector for the...
Back
Top Bottom